home *** CD-ROM | disk | FTP | other *** search
- unit ELV_Reg;
-
- interface
-
- procedure Register;
-
- implementation
-
- uses
- Classes, DsgnIntf, EnhListView,
- {$IFDEF VER90}
- ExtColEd,
- {$ENDIF}
- ExtListView;
-
- procedure Register;
- begin
- RegisterComponents('My Controls', [TEnhListView]);
- RegisterPropertyEditor(TypeInfo(TEnhLVSaveSettings), NIL, '', TClassProperty);
- RegisterComponents('My Controls', [TExtListView]);
- RegisterPropertyEditor(TypeInfo(TExtLVSaveSettings), NIL, '', TClassProperty);
- {$IFDEF VER90}
- RegisterPropertyEditor(TypeInfo(TExtListColumns), NIL, '', TExtListColumnsProperty);
- {$ENDIF}
- end;
-
-
-
- end.
-